home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / gnu / recode33.lha / recode-3.3 / recode.c < prev    next >
C/C++ Source or Header  |  1993-12-22  |  63KB  |  2,379 lines

  1. /* Conversion of files between different charsets and usages.
  2.    Copyright (C) 1990, 1992, 1993 Free Software Foundation, Inc.
  3.    Francois Pinard <pinard@iro.umontreal.ca>, 1990.
  4.  
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 2, or (at your option)
  8.    any later version.
  9.  
  10.    This program is distributed in the hope that it will be useful, but
  11.    WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.    General Public License for more details.
  14.  
  15.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19.  
  20. #include "recode.h"
  21.  
  22. /* Maximum number of single step methods.  */
  23. #define MAX_SINGLE_STEPS 300
  24.  
  25. /* Maximum length of a conversion sequence.  */
  26. #define MAX_SEQUENCE 12
  27.  
  28. /* In the `BEFORE:AFTER' parameter, there is a default supplied whenever
  29.    `:AFTER' or `BEFORE:' are used.  */
  30.  
  31. #ifndef DEFAULT_CHARSET
  32. #ifdef MSDOS
  33. #define DEFAULT_CHARSET "ibmpc"
  34. #else
  35. #ifdef atarist
  36. #define DEFAULT_CODE "atarist"
  37. #else
  38. #define DEFAULT_CHARSET "latin1"
  39. #endif
  40. #endif
  41. #endif
  42.  
  43. /* Global declarations and definitions.  */
  44.  
  45. #include <ctype.h>
  46.  
  47. #include <sys/types.h>
  48. #include <sys/stat.h>
  49.  
  50. #ifdef HAVE_STRING_H
  51. #include <string.h>
  52. #else
  53. #include <strings.h>
  54. #define strchr index
  55. #define strrchr rindex
  56. #endif
  57.  
  58. #ifdef MSDOS
  59. #include <dir.h>
  60. #define unlink dummy1
  61. #include <io.h>
  62. #undef unlink
  63. #include <fcntl.h>
  64. #endif
  65.  
  66. #include <errno.h>
  67. #ifndef errno
  68. extern int errno;
  69. #endif
  70.  
  71. #include "getopt.h"
  72.  
  73. /* tmpnam/tmpname/mktemp/tmpfile and the associate logic has been the
  74.    main portability headache of GNU recode :-(.
  75.    
  76.    People reported that tmpname does not exist everywhere.  On OS/2,
  77.    recode aborts if the prefix has more than five characters.
  78.    
  79.    tmpnam seems to exist everywhere so far.  But NeXT's tmpnam() is such
  80.    that, if called many times in succession, it will always return the
  81.    same value.  One has to really open a file with the returned name
  82.    first, for the next call to tmpnam() to return a different value.  I
  83.    can manage it for a single invocation of recode, but using two recode
  84.    invocations connected with a shell pipe, on the NeXT, creates a race
  85.    by which both copies may call tmpnam() in parallel, then getting the
  86.    same value, and will consequently open the same temporary file.
  87.    
  88.    Noah Friedman <friedman@gnu.ai.mit.edu> suggests opening the file with
  89.    O_EXCL, and when the open presumably fails, call tmpnam again, or try
  90.    the mktemp routine in the GNU C library...maybe that will work better.
  91.    
  92.    Michael I Bushnell <mib@gnu.ai.mit.edu> suggests always using tmpfile,
  93.    which opens the file too, using the O_EXCL option to open.
  94.    
  95.    I'm trying this last suggestion, rewinding instead of closing.
  96.    Someone reported, a long while ago, that rewind did not work on his
  97.    system, so I reverted to opening and closing the temporary files all
  98.    the time.  I lost the precise references for this problem.  In any
  99.    case, I'm reusing rewind with tmpfile, now.  Hopefully, someone will
  100.    tell me if this creates a problem somewhere!  */
  101.  
  102. /* The previous round used tmpnam(3).  This one tries tmpfile(3).  */
  103. /* #define USE_TMPNAM 1 */
  104. #define USE_TMPFILE 1
  105.  
  106. #ifdef USE_TMPNAM
  107. /* Guarantee some value for L_tmpnam.  */
  108. #ifdef MSDOS
  109.  
  110. #define L_tmpnam 13
  111.  
  112. #else /* not MSDOS */
  113.  
  114. char *tmpnam ();
  115.  
  116. #ifndef L_tmpnam
  117. #include "pathmax.h"
  118. #define L_tmpnam PATH_MAX
  119. #endif
  120.  
  121. #endif /* not MSDOS */
  122. #endif /* USE_TMPNAM */
  123.  
  124. #ifdef USE_TMPFILE
  125.  
  126. FILE *tmpfile _((void));
  127.  
  128. #endif /* USE_TMPFILE */
  129.  
  130. /* Variables.  */
  131.  
  132. /* Program identification.  */
  133. const char *const version_string = "GNU recode version 3.3";
  134.  
  135. const char *const copyright_string = "\
  136. This program is free software; you can redistribute it and/or modify\n\
  137. it under the terms of the GNU General Public License as published by\n\
  138. the Free Software Foundation; either version 2, or (at your option)\n\
  139. any later version.\n\
  140. \n\
  141. This program is distributed in the hope that it will be useful,\n\
  142. but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
  143. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
  144. GNU General Public License for more details.\n\
  145. \n\
  146. You should have received a copy of the GNU General Public License\n\
  147. along with this program; if not, write to the Free Software\n\
  148. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n";
  149.  
  150. /* The name this program was run with. */
  151. const char *program_name;
  152.  
  153. /* If non-zero, display usage information and exit.  */
  154. static int show_help = 0;
  155.  
  156. /* If non-zero, print the version on standard output and exit.  */
  157. static int show_version = 0;
  158.  
  159. /* If non-zero, show a list of one or all known charsets, then exit.  */
  160. static int show_charsets = 0;
  161.  
  162. /* Indicates the format for showing only one charset.  */
  163. enum list_format list_format = NO_FORMAT;
  164.  
  165. /* If non-zero, merely explore all recoding paths, report and exit.  */
  166. static int auto_check_mode = 0;
  167.  
  168. /* If non-zero, produce C code for initializing the conversion and exit.  */
  169. static int make_header_mode = 0;
  170.  
  171. /* Table name in generated C code.  */
  172. static const char *header_name = NULL;
  173.  
  174. /* If the recoding yields some problems in reversability, the replacement is
  175.    normally not completed and the file is left unrecoded.  The following
  176.    option forces the replacement even if the case the recoding is not
  177.    reversible.  But if recode is used as a mere filter, there is no file
  178.    replacement and this option is then irrelevant.  */
  179. int force_option = 0;
  180.  
  181. /* This option prevents recode from automatically completing charsets.  */
  182. int strict_mapping = 0;
  183.  
  184. /* By selecting the following option, the program will echo to stderr the
  185.    sequence of elementary recoding steps which will be taken to effect
  186.    the requested recoding.  */
  187. int verbose_option = 0;
  188.  
  189. /* When a file is recoded over itself, precautions are taken to move the
  190.    timestamps of the original file into the recoded file, so to make the
  191.    recoding the most transparent possible to make, and other tools.
  192.    However, selecting the following option inhibit the timestamps handling,
  193.    thus effectively `touching' the file.  */
  194. int touch_option = 0;
  195.  
  196. /* In `texte' charset, some countries use double quotes to mark diaeresis,
  197.    while other countries prefer colons.  The following variable contains the
  198.    diaeresis character for `texte' charset.  Nominally set to a double
  199.    quote, it can be forced to a colon by an option on recode command.  */
  200. char diaeresis_char = '"';
  201.  
  202. /* For `latex' charset, it is often convenient to recode the diacritics
  203.    only, while letting other LaTeX code using backslashes unrecoded.
  204.    In the other charset, one can edit text as well as LaTeX directives.  */
  205. int diacritics_only = 0;
  206.  
  207. /* For `ibmpc' charset, characters 176 to 223 are use to draw boxes.
  208.    If this variable is set, while getting out of `ibmpc', ASCII
  209.    characters are selected so to approximate these boxes.  */
  210. int ascii_graphics = 0;
  211.  
  212. /* The following charset name will be ignored, if given.  */
  213. static const char *ignored_name = NULL;
  214.  
  215. /* Unabridged names of BEFORE and AFTER charsets, even if still aliases.
  216.    These are used for naming the array in produced C code.  */
  217. static const char *before_full_name;
  218. static const char *after_full_name;
  219.  
  220. /* Ordinals of list, BEFORE and AFTER charset.  */
  221. static CHARSET *list_charset;
  222. static CHARSET *before_charset;
  223. static CHARSET *after_charset;
  224.  
  225. /* Flag telling usage that we are decoding charsets.  */
  226. int decoding_charset_flag = 0;
  227.  
  228. /* Tells how various passes will be interconnected.  */
  229. enum sequence_strategy
  230.   {
  231.     STRATEGY_UNDECIDED,        /* sequencing strategy is undecided yet */
  232.     SEQUENCE_WITH_FILES,    /* do not fork, use intermediate files */
  233.     SEQUENCE_WITH_POPEN,    /* use `popen(3)' to fork processes */
  234.     SEQUENCE_WITH_PIPE        /* fork processes connected with `pipe(2)' */
  235.   };
  236. enum sequence_strategy sequence_strategy = STRATEGY_UNDECIDED;
  237.  
  238. /* Known single steps.  */
  239.  
  240. STEP single_step_array[MAX_SINGLE_STEPS];
  241. int number_of_single_steps;    /* number of announced single steps */
  242.  
  243. const unsigned char *one_to_same; /* identity recoding */
  244.  
  245. CHARSET *rfc1345;        /* special RFC 1345 charset value */
  246.  
  247. /* Array stating the sequence of conversions.  */
  248. const STEP *sequence[MAX_SEQUENCE];
  249. int length_of_sequence;
  250.  
  251. /* Quality handling.  */
  252.  
  253. /*---------------------------------------.
  254. | Return a string describing a quality.     |
  255. `---------------------------------------*/
  256.  
  257. const char *
  258. quality_to_string (QUALITY quality)
  259. {
  260.   switch (quality)
  261.     {
  262.     default:
  263.       abort ();
  264.  
  265.     case REVERSIBLE:
  266.       return "reversible";
  267.  
  268.     case ONE_TO_ONE:
  269.       return "one to one";
  270.  
  271.     case MANY_TO_ONE:
  272.       return "many to one";
  273.  
  274.     case ONE_TO_MANY:
  275.       return "one to many";
  276.  
  277.     case MANY_TO_MANY:
  278.       return "many to many";
  279.     }
  280. }
  281.  
  282. /*-------------------------------------------------------------------------.
  283. | Return the quality of a step obtained by merging two others steps, given |
  284. | their respective qualities FIRST and SECOND.                   |
  285. `-------------------------------------------------------------------------*/
  286.  
  287. QUALITY 
  288. merge_qualities (QUALITY first, QUALITY second)
  289. {
  290.   switch (first)
  291.     {
  292.     default:
  293.       abort ();
  294.       
  295.     case REVERSIBLE:
  296.       return second;
  297.  
  298.     case ONE_TO_ONE:
  299.       switch (second)
  300.     {
  301.     case REVERSIBLE:
  302.     case ONE_TO_ONE:
  303.       return ONE_TO_ONE;
  304.  
  305.     case MANY_TO_ONE:
  306.     case ONE_TO_MANY:
  307.     case MANY_TO_MANY:
  308.       return second;
  309.     }
  310.  
  311.     case MANY_TO_ONE:
  312.       switch (second)
  313.     {
  314.     case REVERSIBLE:
  315.     case ONE_TO_ONE:
  316.     case MANY_TO_ONE:
  317.       return MANY_TO_ONE;
  318.  
  319.     case ONE_TO_MANY:
  320.     case MANY_TO_MANY:
  321.       return MANY_TO_MANY;
  322.     }
  323.  
  324.     case ONE_TO_MANY:
  325.       switch (second)
  326.     {
  327.     case REVERSIBLE:
  328.     case ONE_TO_ONE:
  329.     case ONE_TO_MANY:
  330.       return ONE_TO_MANY;
  331.  
  332.     case MANY_TO_ONE:
  333.     case MANY_TO_MANY:
  334.       return MANY_TO_MANY;
  335.     }
  336.  
  337.     case MANY_TO_MANY:
  338.       return MANY_TO_MANY;
  339.     }
  340. }
  341.  
  342. /* Charset handling.  */
  343.  
  344. /*----------------------------------------------------.
  345. | Decode the BEFORE:AFTER argument, given in STRING.  |
  346. `----------------------------------------------------*/
  347.  
  348. void
  349. decode_before_after (const char *string)
  350. {
  351.   char *before;
  352.   char *after;
  353.   char *in;
  354.   char *out;
  355.  
  356.   /* Split the BEFORE:AFTER keyword at the colon.  A backslash can escape
  357.      a colon in both charsets.  */
  358.  
  359.   before = xstrdup (string);
  360.   after = NULL;
  361.   out = before;
  362.  
  363.   for (in = before; *in; in++)
  364.     if (*in == ':' && !after)
  365.       {
  366.     *out++ = '\0';
  367.     after = out;
  368.       }
  369.     else
  370.       {
  371.     if (*in == '\\' && *(in + 1))
  372.       in++;
  373.     *out++ = *in;
  374.       }
  375.   *out = '\0';
  376.  
  377.   if (!after)
  378.     usage (EXIT_FAILURE);
  379.  
  380.   /* Decode both charsets.  */
  381.  
  382.   before_full_name = clean_charset_name (before);
  383.   before_charset = find_charset (before_full_name);
  384.  
  385.   after_full_name = clean_charset_name (after);
  386.   after_charset = find_charset (after_full_name);
  387.  
  388.   /* Free the work area.  */
  389.  
  390.   free (before);
  391. }
  392.  
  393. /* Single step handling.  */
  394.  
  395. /*-----------------------------------------------------------------------.
  396. | Allocate and initialize a new single step, save for the before and after |
  397. | charsets and quality.                             |
  398. `-----------------------------------------------------------------------*/
  399.  
  400. static STEP *
  401. new_single_step (void)
  402. {
  403.   STEP *step;
  404.  
  405.   if (number_of_single_steps == MAX_SINGLE_STEPS)
  406.     error (EXIT_FAILURE, 0, "MAX_SINGLE_STEPS is too small");
  407.  
  408.   step = single_step_array + number_of_single_steps++;
  409.   step->init_recode = NULL;
  410.   step->file_recode = NULL;
  411.   step->one_to_one = NULL;
  412.   step->one_to_many = NULL;
  413.  
  414.   return step;
  415. }
  416.   
  417. /*------------------------------------------------------------------------.
  418. | Create and initialize a new single step for recoding between START_NAME |
  419. | and GOAL_NAME, which are given as strings, give it a recoding QUALITY,  |
  420. | also saving an INIT_RECODE and a FILE_RECODE functions.          |
  421. `------------------------------------------------------------------------*/
  422.  
  423. void
  424. declare_step (const char *before_name, const char *after_name, QUALITY quality,
  425.           void (*init_recode) (STEP *),
  426.           void (*file_recode) (const STEP *, FILE *, FILE *))
  427. {
  428.   STEP *step;
  429.  
  430.   step = new_single_step ();
  431.   step->before = find_charset (before_name);
  432.   step->after = find_charset (after_name);
  433.   step->quality = quality;
  434.   step->init_recode = init_recode;
  435.   step->file_recode = file_recode;
  436. }
  437.  
  438. /*------------------------------------------------------------------.
  439. | Create a one to one table which is the inverse of the given one.  |
  440. `------------------------------------------------------------------*/
  441.  
  442. unsigned char *
  443. invert_table (const unsigned char *table)
  444. {
  445.   unsigned char flag[256];
  446.   unsigned char *result;
  447.   int table_error;
  448.   int counter;
  449.  
  450.   result = (unsigned char *) xmalloc (256);
  451.   memset (flag, 0, 256);
  452.   table_error = 0;
  453.  
  454.   for (counter = 0; counter < 256; counter++)
  455.     {
  456.       if (flag[table[counter]])
  457.     {
  458.       error (0, 0, "Codes %3d and %3d both recode to %3d",
  459.          result[table[counter]], counter, table[counter]);
  460.       table_error = 1;
  461.     }
  462.       else
  463.     {
  464.       result[table[counter]] = counter;
  465.       flag[table[counter]] = 1;
  466.     }
  467.     }
  468.   if (table_error)
  469.     {
  470.       for (counter = 0; counter < 256; counter++)
  471.     if (!flag[counter])
  472.       error (0, 0, "No character recodes to %3d", counter);
  473.       error (EXIT_FAILURE, 0, "Cannot invert given one-to-one table");
  474.     }
  475.   return result;
  476. }
  477.  
  478. /*-------------------------------------------------------------------------.
  479. | Complete a STEP descriptor by a constructed recoding array for 256 chars |
  480. | and the adequate recoding routine.  If FIRST_HALF_IMPLIED is not zero,   |
  481. | default the unconstrained characters of the first 128 to the identity       |
  482. | mapping.  Use an KNOWN_PAIRS array of NUMBER_OF_PAIRS constraints.  If   |
  483. | REVERSE is not zero, use right_table instead of left_table.           |
  484. `-------------------------------------------------------------------------*/
  485.  
  486. void
  487. complete_pairs (STEP *step, int first_half_implied,
  488.         const KNOWN_PAIR *known_pairs, int number_of_pairs,
  489.         int reverse)
  490. {
  491.   unsigned char left_flag[256];
  492.   unsigned char right_flag[256];
  493.   unsigned char left_table[256];
  494.   unsigned char right_table[256];
  495.   int table_error;
  496.  
  497.   unsigned char *flag;
  498.   unsigned char *table;
  499.   const char **table2;
  500.   char *cursor;
  501.   unsigned char left;
  502.   unsigned char right;
  503.   unsigned char search;
  504.   int counter;
  505.   int used;
  506.  
  507.   /* Init tables with zeroes.  */
  508.  
  509.   memset (left_flag, 0, 256);
  510.   memset (right_flag, 0, 256);
  511.   table_error = 0;
  512.  
  513.   /* Establish known data.  */
  514.  
  515.   for (counter = 0; counter < number_of_pairs; counter++)
  516.     {
  517.       left = known_pairs[counter].left;
  518.       right = known_pairs[counter].right;
  519.  
  520.       /* Set one known correspondance.  */
  521.  
  522.       if (left_flag[left])
  523.     {
  524.       if (!table_error)
  525.         {
  526.           error (0, 0, "Following diagnostics for `%s' to `%s'",
  527.              step->before->name, step->after->name);
  528.           table_error = 1;
  529.         }
  530.       error (0, 0, "Pair no. %d: { %3d, %3d } conflicts with { %3d, %3d }",
  531.          counter, left, right, left, left_table[left]);
  532.     }
  533.       else if (right_flag[right])
  534.     {
  535.       if (!table_error)
  536.         {
  537.           error (0, 0, "Following diagnostics for `%s' to `%s'",
  538.              step->before->name, step->after->name);
  539.           table_error = 1;
  540.         }
  541.       error (0, 0, "Pair no. %d: { %3d, %3d } conflicts with { %3d, %3d }",
  542.          counter, left, right, right_table[right], right);
  543.     }
  544.       else
  545.     {
  546.       left_flag[left] = 1;
  547.       left_table[left] = right;
  548.       right_flag[right] = 1;
  549.       right_table[right] = left;
  550.     }
  551.     }
  552.  
  553.   /* Set all the implied correspondances.  */
  554.  
  555.   if (first_half_implied)
  556.     for (counter = 0; counter < 128; counter++)
  557.       if (!left_flag[counter] && !right_flag[counter])
  558.     {
  559.       left_flag[counter] = 1;
  560.       left_table[counter] = counter;
  561.       right_flag[counter] = 1;
  562.       right_table[counter] = counter;
  563.     }
  564.  
  565.   if (strict_mapping)
  566.     {
  567.  
  568.       /* If the recoding is strict, prepare a one to many table, each
  569.      entry being NULL or a string of a single character.  */
  570.  
  571.       /* Select the proper table.  */
  572.  
  573.       if (reverse)
  574.     {
  575.       flag = right_flag;
  576.       table = right_table;
  577.     }
  578.       else
  579.     {
  580.       flag = left_flag;
  581.       table = left_table;
  582.     }
  583.  
  584.       /* Allocate everything in one blow, so it will be freed likewise.  */
  585.  
  586.       used = 0;
  587.       for (counter = 0; counter < 256; counter++)
  588.     if (flag[counter])
  589.       used++;
  590.  
  591.       table2 = (const char **) xmalloc (256 * sizeof (char *) + 2 * used);
  592.       cursor = (char *) (table2 + 256);
  593.  
  594.       /* Construct the table and the strings in parallel.  */
  595.  
  596.       for (counter = 0; counter < 256; counter++)
  597.     if (flag[counter])
  598.       {
  599.         table2[counter] = cursor;
  600.         *cursor++ = table[counter];
  601.         *cursor++ = '\0';
  602.       }
  603.     else
  604.       table2[counter] = NULL;
  605.  
  606.       /* Save a one to many recoding table.  */
  607.  
  608.       step->file_recode = file_one_to_many;
  609.       step->one_to_many = table2;
  610.     }
  611.   else
  612.     {
  613.  
  614.       /* If the recoding is not strict, compute a reversible one to one
  615.      table.  */
  616.  
  617.       if (table_error)
  618.     error (EXIT_FAILURE, 0,
  619.            "Cannot complete table from set of known pairs");
  620.  
  621.       /* Close the table with small permutation cycles.  */
  622.  
  623.       for (counter = 0; counter < 256; counter++)
  624.     if (!right_flag[counter])
  625.       {
  626.         search = counter;
  627.         while (left_flag[search])
  628.           search = left_table[search];
  629.         left_flag[search] = 1;
  630.         left_table[search] = counter;
  631.         right_flag[counter] = 1;
  632.         right_table[counter] = search;
  633.       }
  634.  
  635.       /* Save a copy of the proper table.  */
  636.  
  637.       step->file_recode = file_one_to_one;
  638.       table = (unsigned char *) xmalloc (256);
  639.       memcpy (table, reverse ? right_table : left_table, 256);
  640.       step->one_to_one = table;
  641.     }
  642. }
  643.  
  644. /*----------------------------------------.
  645. | Initialize all collected single steps.  |
  646. `----------------------------------------*/
  647.  
  648. void
  649. register_all_modules (void)
  650. {
  651.   STEP *step;
  652.   int counter;
  653.   unsigned char *table;
  654.  
  655.   table = (unsigned char *) xmalloc (256);
  656.   for (counter = 0; counter < 256; counter++)
  657.     table[counter] = counter;
  658.   one_to_same = table;
  659.  
  660.   prepare_charset_initialization ();
  661.   number_of_single_steps = 0;
  662.  
  663.   rfc1345 = find_charset ("RFC 1345");
  664.   declare_alias (".", "RFC 1345");
  665.  
  666.   declare_alias ("latin1", "ISO_8859-1:1987");
  667.   declare_alias ("lat1", "latin1");
  668.  
  669. #include "initstep.h"
  670.  
  671.   for (step = single_step_array;
  672.        step < single_step_array + number_of_single_steps;
  673.        step++)
  674.  
  675.     if (step->file_recode == file_one_to_one
  676.     && step->one_to_one == one_to_same)
  677.  
  678.       step->conversion_cost = 0;
  679.  
  680.     else
  681.       switch (step->quality)
  682.     {
  683.     case REVERSIBLE:
  684.       step->conversion_cost = 2;
  685.       break;
  686.  
  687.     case ONE_TO_ONE:
  688.       step->conversion_cost = 30;
  689.       break;
  690.  
  691.     case MANY_TO_ONE:
  692.       step->conversion_cost = 10;
  693.       break;
  694.  
  695.     case ONE_TO_MANY:
  696.       step->conversion_cost = 40;
  697.       break;
  698.  
  699.     case MANY_TO_MANY:
  700.       step->conversion_cost = 50;
  701.       break;
  702.     }
  703.  
  704.   /* For all RFC 1345 participating steps, halve the cost since they
  705.      come in pair.  */
  706.  
  707.   for (counter = 0; counter < number_of_single_steps; counter++)
  708.     if (single_step_array[counter].before == rfc1345
  709.     || single_step_array[counter].after == rfc1345)
  710.       single_step_array[counter].conversion_cost /= 2;
  711. }
  712.  
  713. /*-------------------------------------------------------------------------.
  714. | Produce a C include file representing the recoding, on standard output.  |
  715. `-------------------------------------------------------------------------*/
  716.  
  717. static void
  718. output_header_file (void)
  719. {
  720.   const STEP *step;        /* step being analysed */
  721.   int column;            /* column counter */
  722.   char *name;            /* constructed name */
  723.   char *cursor;            /* cursor in constructed name */
  724.   const char *cursor2;        /* cursor to study strings */
  725.   int counter;            /* general purpose counter */
  726.  
  727.   /* This function is called only when the recoding sequence contains a
  728.      single step, so it is safe to use sequence[0] for the step.  */
  729.  
  730.   step = sequence[0];
  731.  
  732.   /* Print the header of the header file.  */
  733.  
  734.   printf ("/* Conversion table from `%s' charset to `%s' charset.\n",
  735.       before_full_name, after_full_name);
  736.   printf ("   Generated mechanically by %s.\n", version_string);
  737.   printf ("\n");
  738.   switch (sequence[0]->quality)
  739.     {
  740.     case REVERSIBLE:
  741.       printf ("   The recoding should be reversible.\n");
  742.       break;
  743.  
  744.     case ONE_TO_ONE:
  745.       printf ("   The recoding might not be reversible.\n");
  746.       break;
  747.  
  748.     case MANY_TO_ONE:
  749.       printf ("   Programming is needed to handle multichar input.\n");
  750.       break;
  751.  
  752.     case ONE_TO_MANY:
  753.       printf ("   Each input char transforms into an output string.\n");
  754.       break;
  755.  
  756.     case MANY_TO_MANY:
  757.       printf ("   Each input char transforms into an output string,\n");
  758.       printf ("   programming is needed to handle multichar input.\n");
  759.       break;
  760.     }
  761.   printf ("*/\n");
  762.   printf ("\n");
  763.  
  764.   /* Construct the name of the resulting table.  */
  765.  
  766.   if (header_name)
  767.     name = xstrdup (header_name);
  768.   else
  769.     {
  770.       name = (char *) xmalloc (strlen (before_full_name) + sizeof "_to_"
  771.                    + strlen (after_full_name));
  772.       strcpy (name, before_full_name);
  773.       strcat (name, "_to_");
  774.       strcat (name, after_full_name);
  775.     }
  776.  
  777.   /* Ensure the table name contains only valid characters for a C
  778.      identifier.  */
  779.  
  780.   for (cursor = name; *cursor; cursor++)
  781.     if (*cursor != '_'
  782.     && (*cursor < 'a' || *cursor > 'z')
  783.     && (*cursor < 'A' || *cursor > 'Z')
  784.     && (*cursor < '0' || *cursor > '9'))
  785.       *cursor = '_';
  786.  
  787.   /* Produce the recoding table in the correct format.  */
  788.  
  789.   if (step->one_to_one)
  790.     {
  791.  
  792.       /* Produce a one to one recoding table.  */
  793.  
  794.       printf ("unsigned char const %s[256] =\n", name);
  795.       printf ("  {\n");
  796.       for (counter = 0; counter < 256; counter++)
  797.     {
  798.       printf ("%s%3d,", counter % 8 == 0 ? "    " : " ",
  799.            step->one_to_one[counter]);
  800.       if (counter % 8 == 7)
  801.         printf ("     /* %3d - %3d */\n", counter - 7, counter);
  802.     }
  803.       printf ("  };\n");
  804.     }
  805.  
  806.   else if (step->one_to_many)
  807.     {
  808.  
  809.       /* Produce a one to many recoding table.  */
  810.  
  811.       printf ("const char *%s[256] =\n", name);
  812.       printf ("  {\n");
  813.       for (counter = 0; counter < 256; counter++)
  814.     {
  815.       printf ("    ");
  816.       column = 4;
  817.       if (step->one_to_many[counter])
  818.         {
  819.           printf ("\"");
  820.           column++;
  821.           for (cursor2 = step->one_to_many[counter]; *cursor2; cursor2++)
  822.         switch (*cursor2)
  823.           {
  824.           case ' ':
  825.             printf (" ");
  826.             column++;
  827.             break;
  828.  
  829.           case '\b':
  830.             printf ("\\b");
  831.             column += 2;
  832.             break;
  833.  
  834.           case '\t':
  835.             printf ("\\t");
  836.             column += 2;
  837.             break;
  838.  
  839.           case '\n':
  840.             printf ("\\n");
  841.             column += 2;
  842.             break;
  843.  
  844.           case '"':
  845.             printf ("\\\"");
  846.             column += 2;
  847.             break;
  848.  
  849.           case '\\':
  850.             printf ("\\\\");
  851.             column += 2;
  852.             break;
  853.  
  854.           default:
  855.             if (isprint (*cursor2))
  856.               {
  857.             printf ("%c", *cursor2);
  858.             column++;
  859.               }
  860.             else
  861.               {
  862.             printf ("\\%0.3o", *(const unsigned char *) cursor2);
  863.             column += 4;
  864.               }
  865.           }
  866.           printf ("\"");
  867.           column++;
  868.         }
  869.       else
  870.         {
  871.           printf ("0");
  872.           column++;
  873.         }
  874.       printf (", ");
  875.       column += 2;
  876.       while (column < 32)
  877.         {
  878.           printf (" ");
  879.           column++;
  880.         }
  881.       printf ("/* %3d */\n", counter);
  882.     }
  883.       printf ("  };\n");
  884.     }
  885.  
  886.   else
  887.     error (EXIT_FAILURE, 0, "No table to print");
  888.  
  889.   free (name);
  890. }
  891.  
  892. /* Double step handling (for RFC 1345).  */
  893.  
  894. /*-----------------------------------------------------------------------.
  895. | Associate a double TABLE with charset NAME, part of the RFC 1345 fully |
  896. | connected set.  Each entry in table uses SIZE characters.         |
  897. `-----------------------------------------------------------------------*/
  898.  
  899. void
  900. declare_double_step (DOUBLE_TABLE *table, const char *name, int size)
  901. {
  902.   CHARSET *charset;
  903.   STEP *step;
  904.  
  905.   charset = find_charset (name);
  906.   charset->table = table;
  907.   charset->size = size;
  908.  
  909.   step = new_single_step ();
  910.   step->before = charset;
  911.   step->after = rfc1345;
  912.   step->quality = strict_mapping ? ONE_TO_MANY : REVERSIBLE;
  913.   step->init_recode = NULL;
  914.   step->file_recode = NULL;
  915.  
  916.   step = new_single_step ();
  917.   step->before = rfc1345;
  918.   step->after = charset;
  919.   step->quality = strict_mapping ? ONE_TO_MANY : REVERSIBLE;
  920.   step->init_recode = NULL;
  921.   step->file_recode = NULL;
  922. }
  923.  
  924. void
  925. init_recode_rfc1345 (STEP *step)
  926. {
  927.   char pool[2 * 256 * 6];    /* character pool */
  928.   struct sort
  929.     {
  930.       const char *key;        /* ISO 10646 name, blank padded to size */
  931.       int code;            /* corresponding charset code (0..255) */
  932.     };
  933.   struct side
  934.     {
  935.       CHARSET *charset;        /* charset */
  936.       struct sort binding[256];    /* bindings */
  937.       int bindings;        /* number of bindings */
  938.     };
  939.  
  940.   DOUBLE_TABLE *table;        /* RFC 1345 table */
  941.   struct side side_array[2];    /* information for each side */
  942.   struct side *side;        /* cursor into side_array */
  943.   int reversed;            /* if both sides reversed */
  944.   KNOWN_PAIR pair[256];        /* obtained pairings */
  945.   int pairs;            /* number of pairings */
  946.   const char *in;        /* cursor in double table strings */
  947.   char *out;            /* cursor in character pool */
  948.   int code;            /* character code */
  949.   int row_counter;        /* double table row counter */
  950.   int position_counter;        /* double table column counter */
  951.   int counter;            /* counter for characters */
  952.   int left;            /* left bindings counter */
  953.   int right;            /* right bindings counter */
  954.  
  955.   /* For ensuring reversibility, known pairs should be computed the same
  956.      way regardless of the direction of recoding.  This canonalization is
  957.      ensured through the charset values, which are increasing along the
  958.      initialization order.  This should also reflect the charset order in
  959.      rfc1345.txt.  */
  960.  
  961.   if (step->before < step->after)
  962.     {
  963.       side_array[0].charset = step->before;
  964.       side_array[1].charset = step->after;
  965.       reversed = 0;
  966.     }
  967.   else
  968.     {
  969.       side_array[0].charset = step->after;
  970.       side_array[1].charset = step->before;
  971.       reversed = 1;
  972.     }
  973.  
  974.   out = pool;
  975.   for (side = side_array; side < side_array + 2; side++)
  976.     {
  977.  
  978.       /* Move out the values for sorting out of the double table.  */
  979.  
  980.       side->bindings = 0;
  981.       code = 0;
  982.       table = side->charset->table;
  983.  
  984.       for (row_counter = 0; row_counter < 8; row_counter++)
  985.     if (in = (*table)[row_counter], in)
  986.       for (position_counter = 0; position_counter < 32; position_counter++)
  987.         {
  988.           if (*in == ' ')
  989.         in += side->charset->size;
  990.           else
  991.         {
  992.  
  993.           /* Establish a new binding.  */
  994.  
  995.           side->binding[side->bindings].code = code;
  996.           side->binding[side->bindings].key = out;
  997.           side->bindings++;
  998.  
  999.           /* Copy out the value to the character pool, and terminate it
  1000.              with a NULL.  */
  1001.  
  1002.           for (counter = 0; counter < side->charset->size; counter++)
  1003.             if (*in == ' ')
  1004.               in++;
  1005.             else
  1006.               *out++ = *in++;
  1007.           *out++ = '\0';
  1008.         }
  1009.           code++;
  1010.         }
  1011.     else
  1012.       code += 32;
  1013.     }
  1014.  
  1015.   /* This crude, quadratic pairing code will do for now.  */
  1016.  
  1017.   pairs = 0;
  1018.   for (left = 0; left < side_array[0].bindings; left++)
  1019.     {
  1020.       for (right = 0; right < side_array[1].bindings; right++)
  1021.     if (strcmp (side_array[0].binding[left].key,
  1022.             side_array[1].binding[right].key)
  1023.         == 0)
  1024.       {
  1025.         pair[pairs].left = side_array[0].binding[left].code;
  1026.         pair[pairs].right = side_array[1].binding[right].code;
  1027.         pairs++;
  1028.         break;
  1029.       }
  1030.     }
  1031.  
  1032.   /* Complete the recoding table out of this.  */
  1033.  
  1034.   complete_pairs (step, 0, pair, pairs, reversed);
  1035. }
  1036.  
  1037. /* Step sequence handling.  */
  1038.  
  1039. #define UNREACHABLE    30000        /* No way for this conversion */
  1040.  
  1041. /*-------------------------------------------------------.
  1042. | Explain what recoding step sequence has been planned.     |
  1043. `-------------------------------------------------------*/
  1044.  
  1045. static void
  1046. echo_sequence (void)
  1047. {
  1048.   const char *last;        /* last name printed */
  1049.   const char *name;        /* name being printed */
  1050.   QUALITY quality;        /* cumulative quality */
  1051.   int counter;            /* index into sequence */
  1052.  
  1053.   if (length_of_sequence < 0)
  1054.     error (0, 0, "UNACHIEVABLE recoding!");
  1055.   else if (length_of_sequence == 0)
  1056.     error (0, 0, "Mere copy, no recoding");
  1057.   else
  1058.     {
  1059.       quality = REVERSIBLE;
  1060.       last = NULL;
  1061.       for (counter = 0; counter < length_of_sequence; counter++)
  1062.     {
  1063.       name = sequence[counter]->before->name;
  1064.       if (counter == 0)
  1065.         fprintf (stderr, "%s", name);
  1066.       else if (name != last)
  1067.         fprintf (stderr, "/%s", name);
  1068.  
  1069.       name = sequence[counter]->after->name;
  1070.       fprintf (stderr, " -> %s", name);
  1071.  
  1072.       quality = merge_qualities (quality, sequence[counter]->quality);
  1073.       last = name;
  1074.     }
  1075.       fprintf (stderr, " (%s)\n", quality_to_string (quality));
  1076.     }
  1077. }
  1078.  
  1079. /*----------------------------------------------------------.
  1080. | Find a sequence of single steps to achieve a conversion.  |
  1081. `----------------------------------------------------------*/
  1082.  
  1083. static void
  1084. find_sequence (CHARSET *before, CHARSET *after)
  1085. {
  1086.   struct search
  1087.     {
  1088.       STEP *step;        /* step who will bring us nearer to after */
  1089.       int cost;            /* cost from here through after */
  1090.     };
  1091.   struct search *search_array;    /* critical path search tree */
  1092.   struct search *search;    /* item in search_array for charset */
  1093.   STEP *step;            /* cursor in possible single_steps */
  1094.   int cost;            /* cost under consideration */
  1095.   int modified;            /* != 0 if modified since last iteration */
  1096.   CHARSET *charset;        /* charset while reconstructing sequence */
  1097.  
  1098.   search_array
  1099.     = (struct search *) xmalloc (number_of_charsets * sizeof (struct search));
  1100.  
  1101.   /* Initialize the search for an economical route, looking our way
  1102.      backward from the after towards the before.  */
  1103.  
  1104.   for (search = search_array;
  1105.        search < search_array + number_of_charsets;
  1106.        search++)
  1107.     {
  1108.       search->step = NULL;
  1109.       search->cost = UNREACHABLE;
  1110.     }
  1111.   search_array[after - charset_array].cost = 0;
  1112.  
  1113.   modified = 1;
  1114.   while (modified)
  1115.     {
  1116.       modified = 0;
  1117.       for (step = single_step_array;
  1118.        step < single_step_array + number_of_single_steps;
  1119.        step++)
  1120.     if (!step->before->ignore)
  1121.       {
  1122.         cost = search_array[step->after - charset_array].cost;
  1123.         if (cost != UNREACHABLE)
  1124.           {
  1125.         cost += step->conversion_cost;
  1126.         search = search_array + (step->before - charset_array);
  1127.         if (cost < search->cost)
  1128.           {
  1129.             search->step = step;
  1130.             search->cost = cost;
  1131.             modified = 1;
  1132.           }
  1133.           }
  1134.       }
  1135.     }
  1136.  
  1137.   if (search_array[before - charset_array].cost == UNREACHABLE)
  1138.     {
  1139.       
  1140.       /* If no path has been found, return with a negative length.  */
  1141.  
  1142.       length_of_sequence = -1;
  1143.     }
  1144.   else
  1145.     {
  1146.  
  1147.       /* Save the retained best path in the sequence array.  While doing so,
  1148.      optimize out any single step which merely copies.  Also execute the
  1149.      delayed initialization for those steps which registered one.  */
  1150.  
  1151.       length_of_sequence = 0;
  1152.       for (charset = before; charset != after; charset = step->after)
  1153.     {
  1154.       step = search_array[charset - charset_array].step;
  1155.       if (step->file_recode != file_one_to_one
  1156.           || step->one_to_one != one_to_same)
  1157.         {
  1158.           if (length_of_sequence == MAX_SEQUENCE)
  1159.         error (EXIT_FAILURE, 0, "MAX_SEQUENCE is too small");
  1160.           sequence[length_of_sequence++] = step;
  1161.           if (step->init_recode)
  1162.         {
  1163.           (*step->init_recode) (step);
  1164.           step->init_recode = NULL;
  1165.         }
  1166.         }
  1167.     }
  1168.     }
  1169.  
  1170.   /* Tell what has been decided, for the user.  */
  1171.  
  1172.   if (verbose_option)
  1173.     echo_sequence ();
  1174.  
  1175.   free (search_array);
  1176. }
  1177.  
  1178. /*---------------------------------------------------------------------.
  1179. | Optimize a sequence of single steps by creating new single steps, if |
  1180. | this can be done by merging adjacent steps which are simple enough.  |
  1181. `---------------------------------------------------------------------*/
  1182.  
  1183. static void
  1184. optimize_sequence (void)
  1185. {
  1186.   int saved_steps;        /* number of saved steps */
  1187.   unsigned char *accum;        /* one_to_one accumulated recoding */
  1188.   unsigned char temp[256];    /* temporary value for accum array */
  1189.   const char **string;        /* one_to_many recoding */
  1190.   STEP *step;            /* new single step being constructed */
  1191.   int in;            /* ordinal of next studied sequence step */
  1192.   int out;            /* ordinal of next output sequence step */
  1193.   int counter;            /* all purpose counter */
  1194.  
  1195.   saved_steps = 0;
  1196.  
  1197.   /* See if there are some RFC 1345 double steps to merge.  */
  1198.  
  1199.   in = 0;
  1200.   out = 0;
  1201.  
  1202.   while (in < length_of_sequence)
  1203.     if (sequence[in]->after == rfc1345
  1204.     && in < length_of_sequence - 1
  1205.     && sequence[in+1]->before == rfc1345)
  1206.       {
  1207.  
  1208.     /* Produce a new single step for the double step.  */
  1209.  
  1210.     step = new_single_step ();
  1211.     step->before = sequence[in]->before;
  1212.     step->after = sequence[in+1]->after;
  1213.     step->quality = merge_qualities (sequence[in]->quality,
  1214.                      sequence[in+1]->quality);
  1215.     step->init_recode = init_recode_rfc1345;
  1216.     step->file_recode = file_one_to_one;
  1217.  
  1218.     in += 2;
  1219.     saved_steps++;
  1220.  
  1221.     /* Initialize the new single step.  If not, it will not be
  1222.        mergeable with others.  */
  1223.  
  1224.     (*step->init_recode) (step);
  1225.     step->init_recode = NULL;
  1226.  
  1227.     sequence[out++] = step;
  1228.       }
  1229.     else if (sequence[in]->before == rfc1345
  1230.          || sequence[in]->after == rfc1345)
  1231.       error (EXIT_FAILURE, 0, "You may not ask for RFC 1345 explicitely");
  1232.     else
  1233.       sequence[out++] = sequence[in++];
  1234.  
  1235.   length_of_sequence = out;
  1236.  
  1237.   /* Recopy the sequence array over itself, while merging subsequences of
  1238.      one or more consecutive one-to-one recodings, including an optional
  1239.      final one-to-many recoding.  */
  1240.  
  1241.   in = 0;
  1242.   out = 0;
  1243.   while (in < length_of_sequence)
  1244.     if (sequence[in]->one_to_one
  1245.     && (sequence[in]->file_recode == file_one_to_one || make_header_mode)
  1246.     && in < length_of_sequence - 1
  1247.     && (((sequence[in+1]->one_to_one)
  1248.          && (sequence[in+1]->file_recode == file_one_to_one
  1249.          || make_header_mode))
  1250.         || (sequence[in+1]->one_to_many
  1251.         && (sequence[in+1]->file_recode == file_one_to_many
  1252.             || make_header_mode))))
  1253.       {
  1254.  
  1255.     /* Construct a new single step, and initialize a cumulative
  1256.        one-to-one recoding with the identity permutation.  */
  1257.  
  1258.     accum = (unsigned char *) xmalloc (256);
  1259.     for (counter = 0; counter < 256; counter++)
  1260.       accum[counter] = counter;
  1261.  
  1262.     step = new_single_step ();
  1263.     step->before = sequence[in]->before;
  1264.     step->quality = REVERSIBLE;
  1265.  
  1266.     /* Merge in all consecutive one-to-one recodings.  */
  1267.  
  1268.     while (in < length_of_sequence
  1269.            && sequence[in]->one_to_one
  1270.            && (sequence[in]->file_recode == file_one_to_one
  1271.            || make_header_mode))
  1272.       {
  1273.         for (counter = 0; counter < 256; counter++)
  1274.           temp[counter] = sequence[in]->one_to_one[accum[counter]];
  1275.         for (counter = 0; counter < 256; counter++)
  1276.           accum[counter] = temp[counter];
  1277.         step->after = sequence[in]->after;
  1278.         step->quality
  1279.           = merge_qualities (step->quality, sequence[in]->quality);
  1280.         in++;
  1281.         saved_steps++;
  1282.       }
  1283.  
  1284.     /* Check for a possible one-to-many recoding.  */
  1285.  
  1286.     if (in < length_of_sequence
  1287.         && sequence[in]->one_to_many
  1288.         && (sequence[in]->file_recode == file_one_to_many
  1289.         || make_header_mode))
  1290.       {
  1291.  
  1292.         /* Merge in the one-to-many recoding, and make the new single
  1293.            step be a one-to-many recoding.  */
  1294.  
  1295.         string = (const char **) xmalloc (256 * sizeof (char *));
  1296.         for (counter = 0; counter < 256; counter++)
  1297.           string[counter] = sequence[in]->one_to_many[accum[counter]];
  1298.         free (accum);
  1299.         step->one_to_many = string;
  1300.         step->file_recode = file_one_to_many;
  1301.         step->after = sequence[in]->after;
  1302.         step->quality
  1303.           = merge_qualities (step->quality, sequence[in]->quality);
  1304.         in++;
  1305.         saved_steps++;
  1306.       }
  1307.     else
  1308.       {
  1309.  
  1310.         /* Make the new single step be a one-to-one recoding.  */
  1311.  
  1312.         step->one_to_one = accum;
  1313.         step->file_recode = file_one_to_one;
  1314.       }
  1315.  
  1316.     /* Save the newly created step.  */
  1317.  
  1318.     sequence[out++] = step;
  1319.       }
  1320.     else
  1321.       {
  1322.  
  1323.     /* This step is not being optimized.  Keep it verbatim.  */
  1324.  
  1325.     sequence[out++] = sequence[in++];
  1326.       }
  1327.  
  1328.   /* Save the resulting sequence length, and tell the user if something
  1329.      changed.  */
  1330.  
  1331.   length_of_sequence = out;
  1332.  
  1333.   if (saved_steps > 0 && verbose_option)
  1334.     echo_sequence ();
  1335. }
  1336.  
  1337. /* Recoding execution control.  */
  1338.  
  1339. /*--------------.
  1340. | Copy a file.  |
  1341. `--------------*/
  1342.  
  1343. static void
  1344. file_copy (FILE *input_file, FILE *output_file)
  1345. {
  1346.   int input_char;        /* current character */
  1347.  
  1348.   while (input_char = getc (input_file), input_char != EOF)
  1349.     putc (input_char, output_file);
  1350. }
  1351.  
  1352. /*--------------------------------------------------.
  1353. | Recode a file using a one-to-one recoding table.  |
  1354. `--------------------------------------------------*/
  1355.  
  1356. void
  1357. file_one_to_one (const STEP *step, FILE *input_file, FILE *output_file)
  1358. {
  1359.   const unsigned char *table;    /* conversion table */
  1360.   int input_char;        /* current character */
  1361.  
  1362.   table = step->one_to_one;
  1363.   if (table == one_to_same)
  1364.  
  1365.     /* Optimize a little an identity recoding.  */
  1366.  
  1367.     file_copy (input_file, output_file);
  1368.  
  1369.   else
  1370.  
  1371.     /* Copy the file through the one to one recoding table.  */
  1372.  
  1373.     while (input_char = getc (input_file), input_char != EOF)
  1374.       putc (table[input_char], output_file);
  1375. }
  1376.  
  1377. /*---------------------------------------------------.
  1378. | Recode a file using a one-to-many recoding table.  |
  1379. `---------------------------------------------------*/
  1380.  
  1381. void
  1382. file_one_to_many (const STEP *step, FILE *input_file, FILE *output_file)
  1383. {
  1384.   const char *const *table;    /* conversion table */
  1385.   int input_char;        /* current character */
  1386.   const char *output_string;    /* translated characters */
  1387.  
  1388.   /* Copy the file through the one to many recoding table.  */
  1389.  
  1390.   table = step->one_to_many;
  1391.   while (input_char = getc (input_file), input_char != EOF)
  1392.     if (output_string = table[input_char], output_string)
  1393.       while (*output_string)
  1394.     {
  1395.       putc (*output_string, output_file);
  1396.       output_string++;
  1397.     }
  1398. }
  1399.  
  1400. /*-------------------------------------------------------------------.
  1401. | Execute the conversion sequence, using several passes with two     |
  1402. | alternating intermediate files.  This routine assumes at least one |
  1403. | needed recoding step.                             |
  1404. `-------------------------------------------------------------------*/
  1405.  
  1406. static void
  1407. execute_pass_sequence (const char *input_name, const char *output_name)
  1408. {
  1409.   int sequence_index;        /* index into sequence */
  1410.   const STEP *step;        /* pointer to step */
  1411.   FILE *input_file;        /* input file to recoding step */
  1412.   FILE *output_file;        /* output file from recoding step */
  1413. #ifdef USE_TMPNAM
  1414.   char *temp_input_name;    /* step input file name */
  1415.   char *temp_output_name;    /* step output file name */
  1416.   char temp_name_1[L_tmpnam];    /* one temporary file name */
  1417.   char temp_name_2[L_tmpnam];    /* another temporary file name */
  1418.   char *exchange_temp;        /* for exchanging temporary names */
  1419. #endif
  1420.  
  1421. #ifdef USE_TMPNAM
  1422.  
  1423.   /* Choose names for intermediate files.  Use "" for delaying them.  */
  1424.  
  1425. #ifdef MSDOS
  1426.   strcpy (temp_name_1, "recodex1.tmp");
  1427.   strcpy (temp_name_2, "recodex2.tmp");
  1428. #else
  1429.   *temp_name_1 = '\0';
  1430.   *temp_name_2 = '\0';
  1431. #endif
  1432.   temp_input_name = temp_name_1;
  1433.   temp_output_name = temp_name_2;
  1434.  
  1435. #endif /* USE_TMPNAM */
  1436.  
  1437.   /* Execute one pass for each step of the sequence.  */
  1438.  
  1439.   for (sequence_index = 0;
  1440.        sequence_index < length_of_sequence;
  1441.        sequence_index++)
  1442.     {
  1443.  
  1444.       /* Select the input file for this step.  */
  1445.  
  1446.       if (sequence_index == 0)
  1447.     if (input_name)
  1448.       {
  1449.         input_file = fopen (input_name, "r");
  1450.         if (input_file == NULL)
  1451.           error (EXIT_FAILURE, errno, input_name);
  1452.       }
  1453.     else
  1454.       input_file = stdin;
  1455.       else
  1456.     {
  1457. #ifdef USE_TMPNAM
  1458.       input_file = fopen (temp_input_name, "r");
  1459.       if (input_file == NULL)
  1460.         error (EXIT_FAILURE, errno, temp_input_name);
  1461. #endif
  1462.  
  1463. #ifdef USE_TMPFILE
  1464.       rewind (input_file);
  1465. #endif
  1466.     }
  1467.  
  1468.       /* Select the output file for this step.  */
  1469.  
  1470.       if (sequence_index == length_of_sequence - 1)
  1471.     if (output_name)
  1472.       {
  1473.         output_file = fopen (output_name, "w");
  1474.         if (output_file == NULL)
  1475.           error (EXIT_FAILURE, errno, output_name);
  1476.       }
  1477.     else
  1478.       output_file = stdout;
  1479.       else
  1480.     {
  1481. #ifdef USE_TMPNAM
  1482. #ifndef MSDOS
  1483.       if (*temp_output_name == '\0')
  1484.         tmpnam (temp_output_name);
  1485. #endif
  1486.       output_file = fopen (temp_output_name, "w");
  1487.       if (output_file == NULL)
  1488.         error (EXIT_FAILURE, errno, temp_output_name);
  1489. #endif
  1490.  
  1491. #ifdef USE_TMPFILE
  1492.       output_file = tmpfile ();
  1493.       if (output_file == NULL)
  1494.         error (EXIT_FAILURE, errno, "tmpfile()");
  1495. #endif
  1496.     }
  1497.  
  1498.       /* Execute one recoding step.  */
  1499.  
  1500.       step = sequence[sequence_index];
  1501.       (*step->file_recode) (step, input_file, output_file);
  1502.  
  1503.       /* Close the input file, unlink it if it was temporary.  */
  1504.  
  1505.       if (sequence_index == 0)
  1506.     {
  1507.       if (input_name)
  1508.         fclose (input_file);
  1509.     }
  1510.       else
  1511.     {
  1512.       fclose (input_file);
  1513. #ifdef USE_TMPNAM
  1514.       unlink (temp_input_name);
  1515. #endif
  1516.     }
  1517.  
  1518.       /* Close the output file, exchange names for subsequent step.  */
  1519.  
  1520.       if (sequence_index == length_of_sequence - 1)
  1521.     {
  1522.       if (output_name)
  1523.         fclose (output_file);
  1524.     }
  1525.       else
  1526.     {
  1527. #ifdef USE_TMPNAM
  1528.       fclose (output_file);
  1529.  
  1530.       exchange_temp = temp_input_name;
  1531.       temp_input_name = temp_output_name;
  1532.       temp_output_name = exchange_temp;
  1533. #endif
  1534.  
  1535. #ifdef USE_TMPFILE
  1536.       input_file = output_file;
  1537. #endif
  1538.     }
  1539.     }
  1540. }
  1541.  
  1542. /*-------------------------------------------------------------------------.
  1543. | Execute the conversion sequence, using a chain of invocations of the       |
  1544. | program through popen.  This routine assumes that more than one recoding |
  1545. | step is needed.                               |
  1546. `-------------------------------------------------------------------------*/
  1547.  
  1548. #ifdef HAVE_POPEN
  1549.  
  1550. static void
  1551. execute_popen_sequence (const char *input_name, const char *output_name)
  1552. {
  1553.   const STEP *step;        /* current step */
  1554.   FILE *input_file;        /* input file to recoding step */
  1555.   FILE *output_file;        /* output file from recoding step */
  1556.   char popen_command[80];    /* to receive command string */
  1557.   int status;            /* status to be asserted */
  1558.  
  1559.   /* Construct a `recode' command for all recoding steps but the first.  */
  1560.  
  1561.   sprintf (popen_command, "%s -o %s %s:%s %s%s",
  1562.        program_name,
  1563.        diaeresis_char == ':' ? " -c" : "",
  1564.        clean_charset_name (sequence[1]->before->name),
  1565.        clean_charset_name (sequence[length_of_sequence-1]->after->name),
  1566.        output_name ? "> " : "",
  1567.        output_name ? output_name : "");
  1568.  
  1569.   /* Execute the first recoding step.  */
  1570.  
  1571.   if (!input_name)
  1572.     input_file = stdin;
  1573.   else if (input_file = fopen (input_name, "r"), input_file == NULL)
  1574.     error (EXIT_FAILURE, errno, input_name);
  1575.  
  1576.   if (output_file = popen (popen_command, "w"), output_file == NULL)
  1577.     error (EXIT_FAILURE, errno, popen_command);
  1578.  
  1579.   step = sequence[0];
  1580.   (*step->file_recode) (step, input_file, output_file);
  1581.  
  1582.   if (input_name)
  1583.     fclose (input_file);
  1584.   status = pclose (output_file);
  1585.   if (status != 0)
  1586.     error (EXIT_FAILURE, errno, popen_command);
  1587. }
  1588.  
  1589. #endif /* HAVE_POPEN */
  1590.  
  1591. /*-------------------------------------------------------------------------.
  1592. | Execute the conversion sequence, forking the program many times for all  |
  1593. | elementary steps, interconnecting them with pipes.  This routine assumes |
  1594. | at least one recoding step is needed.                       |
  1595. `-------------------------------------------------------------------------*/
  1596.  
  1597. #ifndef HAVE_DUP2
  1598. #undef HAVE_PIPE
  1599. #endif
  1600.  
  1601. #ifdef HAVE_PIPE
  1602.  
  1603. static void
  1604. execute_pipe_sequence (const char *input_name, const char *output_name)
  1605. {
  1606.   int sequence_index;        /* index into sequence */
  1607.   const STEP *step;        /* pointer into single_steps */
  1608.  
  1609.   FILE *input_file;        /* input file to recoding step */
  1610.   FILE *output_file;        /* output file from recoding step */
  1611.   int pipe_pair[2];        /* pair of file descriptors for a pipe */
  1612.   int child_process;        /* child process number, zero if child */
  1613.   int status;            /* status to be asserted */
  1614.  
  1615.   /* Prepare the final output file.  */
  1616.  
  1617.   if (output_name)
  1618.     {
  1619.       output_file = fopen (output_name, "w");
  1620.       if (output_file != NULL)
  1621.     error (EXIT_FAILURE, errno, output_name);
  1622.     }
  1623.   else
  1624.     output_file = stdout;
  1625.  
  1626.   /* Create all subprocesses and interconnect them.  */
  1627.  
  1628.   for (sequence_index = length_of_sequence - 1;
  1629.        sequence_index > 0;
  1630.        sequence_index--)
  1631.     {
  1632.       status = pipe (pipe_pair);
  1633.       if (status != 0)
  1634.     error (EXIT_FAILURE, errno, "Creating pipe");
  1635.       child_process = fork ();
  1636.       if (child_process < 0)
  1637.     error (EXIT_FAILURE, errno, "Forking process");
  1638.       if (child_process == 0)
  1639.     {
  1640.  
  1641.           /* The child executes its recoding step, reading from the pipe
  1642.              and writing to the current output file; then it exits.  */
  1643.  
  1644.       status = close (pipe_pair[1]);
  1645.       if (status != 0)
  1646.         error (EXIT_FAILURE, errno, "Closing pipe output side");
  1647.       input_file = fdopen (pipe_pair[0], "r");
  1648.       if (input_file == NULL)
  1649.         error (EXIT_FAILURE, errno, "Streaming pipe input side");
  1650.  
  1651.       step = sequence[sequence_index];
  1652.       (*step->file_recode) (step, input_file, output_file);
  1653.  
  1654.       fclose (input_file);
  1655.       if (sequence_index < length_of_sequence - 1 || output_name)
  1656.         fclose (output_file);
  1657.       exit (EXIT_SUCCESS);
  1658.     }
  1659.       else
  1660.     {
  1661.  
  1662.           /* The parent redirects the current output file to the pipe.  */
  1663.  
  1664.       status = dup2 (pipe_pair[1], fileno (output_file));
  1665.       if (status == -1)
  1666.         error (EXIT_FAILURE, errno, "Duplicating pipe output");
  1667.       status = close (pipe_pair[0]);
  1668.       if (status != 0)
  1669.         error (EXIT_FAILURE, error, "Closing pipe input side");
  1670.       status = close (pipe_pair[1]);
  1671.       if (status != 0)
  1672.         error (EXIT_FAILURE, error, "Closing pipe output side");
  1673.     }
  1674.     }
  1675.  
  1676.   /* All the children are created, blocked on read.  Now, feed the whole
  1677.      chain of processes with the output of the first recoding step.  */
  1678.  
  1679.   if (!input_name)
  1680.     input_file = stdin;
  1681.   else
  1682.     {
  1683.       input_file = fopen (input_name, "r");
  1684.       if (input_file == NULL)
  1685.     error (EXIT_FAILURE, errno, input_name);
  1686.     }
  1687.  
  1688.   (*sequence[0]->routine) (input_file, output_file);
  1689.  
  1690.   if (input_name)
  1691.     fclose (input_file);
  1692.   if (output_name)
  1693.     fclose (output_file);
  1694.  
  1695.   /* Wait on all children, mainly to avoid synchronisation problems on
  1696.      output file contents, but also to reduce the number of zombie
  1697.      processes in case the user recodes many files at once.  */
  1698.  
  1699.   while (wait (NULL) > 0)
  1700.     ;
  1701. }
  1702.  
  1703. #endif /* HAVE_PIPE */
  1704.  
  1705. /*-----------------------------------------------------------------------.
  1706. | Execute the conversion sequence, using the selected strategy whenever     |
  1707. | more than one conversion step is needed.  If no conversion are needed, |
  1708. | merely copy the input onto the output.                 |
  1709. `-----------------------------------------------------------------------*/
  1710.  
  1711. /* If some sequencing strategies are missing, this routine automatically
  1712.    uses fallback strategies.  */
  1713.  
  1714. static void
  1715. execute_sequence (const char *input_name, const char *output_name)
  1716. {
  1717.   FILE *input_file;        /* input file to recoding step */
  1718.   FILE *output_file;        /* output file from recoding step */
  1719.   const STEP *step;        /* current step */
  1720.  
  1721. #ifdef MSDOS
  1722.   if (!input_name)
  1723.     setmode (fileno (stdin), O_BINARY);
  1724.   if (!output_name)
  1725.     setmode (fileno (stdout), O_BINARY);
  1726.   _fmode = O_BINARY;
  1727. #endif
  1728.  
  1729.   if (verbose_option && input_name)
  1730.     {
  1731.       fprintf (stderr, "Recoding %s...", input_name);
  1732.       fflush (stderr);
  1733.     }
  1734.  
  1735.   if (length_of_sequence > 1)
  1736.     switch (sequence_strategy)
  1737.       {
  1738.       case STRATEGY_UNDECIDED:
  1739.     error (EXIT_FAILURE, 0, "Internal error - strategy undecided");
  1740.  
  1741.       case SEQUENCE_WITH_PIPE:
  1742. #ifdef HAVE_PIPE
  1743.     execute_pipe_sequence (input_name, output_name);
  1744.     break;
  1745. #endif
  1746.  
  1747.       case SEQUENCE_WITH_POPEN:
  1748. #ifdef HAVE_POPEN
  1749.     execute_popen_sequence (input_name, output_name);
  1750.     break;
  1751. #endif
  1752.  
  1753.       case SEQUENCE_WITH_FILES:
  1754.     execute_pass_sequence (input_name, output_name);
  1755.     break;
  1756.       }
  1757.   else
  1758.     {
  1759.  
  1760.       /* This is a single-step recoding or a mere copy.  Do it.  */
  1761.  
  1762.       if (!input_name)
  1763.     input_file = stdin;
  1764.       else if (input_file = fopen (input_name, "r"), input_file == NULL)
  1765.     error (EXIT_FAILURE, errno, input_name);
  1766.  
  1767.       if (!output_name)
  1768.     output_file = stdout;
  1769.       else if (output_file = fopen (output_name, "w"), output_file == NULL)
  1770.     error (EXIT_FAILURE, errno, output_name);
  1771.  
  1772.       if (length_of_sequence == 1)
  1773.     {
  1774.       step = sequence[0];
  1775.       (*step->file_recode) (step, input_file, output_file);
  1776.     }
  1777.       else
  1778.     file_copy (input_file, output_file);
  1779.  
  1780.       if (input_name)
  1781.     fclose (input_file);
  1782.       if (output_name)
  1783.     fclose (output_file);
  1784.     }
  1785.  
  1786.   if (verbose_option && input_name)
  1787.     {
  1788.       fprintf (stderr, " done\n");
  1789.       fflush (stderr);
  1790.     }
  1791. }
  1792.  
  1793. /* Some special option handling.  */
  1794.  
  1795. /*-----------------------------------------------------------------.
  1796. | Print a truncated charset name, with a guaranteed space at end.  |
  1797. `-----------------------------------------------------------------*/
  1798.  
  1799. static void
  1800. print_truncated_charset_name (const char *name)
  1801. {
  1802.   char copy[15];
  1803.  
  1804.   if ((int) strlen (name) > 14)
  1805.     {
  1806.       memcpy (copy, name, 14);
  1807.       copy[14] = '\0';
  1808.       name = copy;
  1809.     }
  1810.   printf ("%-14s ", name);
  1811. }
  1812.  
  1813. /*----------------------------------------------------.
  1814. | Find all possible sequences and report about them.  |
  1815. `----------------------------------------------------*/
  1816.  
  1817. static void
  1818. report_about_all_sequences (void)
  1819. {
  1820.   CHARSET *before;
  1821.   CHARSET *after;
  1822.   int saved_length_of_sequence;
  1823.   int saved_number_of_single_steps;
  1824.   QUALITY quality;
  1825.   const char *quality_string;
  1826.   int counter;
  1827.   STEP *step;
  1828.  
  1829.   for (before = charset_array;
  1830.        before < charset_array + number_of_charsets;
  1831.        before++)
  1832.  
  1833.     if (!before->ignore && before != rfc1345)
  1834.  
  1835.       for (after = charset_array;
  1836.        after < charset_array + number_of_charsets;
  1837.        after++)
  1838.  
  1839.     if (!after->ignore && after != before && after != rfc1345)
  1840.       {
  1841.  
  1842.         /* Study what we can do.  */
  1843.  
  1844.         find_sequence (before, after);
  1845.         if (length_of_sequence < 0)
  1846.           {
  1847.         if (!ignored_name)
  1848.           {
  1849.             print_truncated_charset_name (before->name);
  1850.             print_truncated_charset_name (after->name);
  1851.             printf ("  UNACHIEVABLE\n");
  1852.           }
  1853.           }
  1854.         else
  1855.           {
  1856.  
  1857.         /* Compute the recoding quality.  */
  1858.  
  1859.         quality = REVERSIBLE;
  1860.         for (counter = 0; counter < length_of_sequence; counter++)
  1861.           quality = merge_qualities (quality,
  1862.                          sequence[counter]->quality);
  1863.         quality_string = quality_to_string (quality);
  1864.  
  1865.         /* Study what optimization can do.  */
  1866.  
  1867.         saved_length_of_sequence = length_of_sequence;
  1868.         saved_number_of_single_steps = number_of_single_steps;
  1869.  
  1870.         optimize_sequence ();
  1871.  
  1872.         /* Check and report codes which should be aliases.  */
  1873.  
  1874.         if (length_of_sequence == 1 && sequence[0]->one_to_one)
  1875.           {
  1876.             for (counter = 0; counter < 256; counter++)
  1877.               if (sequence[0]->one_to_one[counter] != counter)
  1878.             break;
  1879.             if (counter == 256)
  1880.               quality_string = "ONE to SAME";
  1881.           }
  1882.  
  1883.         /* Make the report.  */
  1884.  
  1885.         print_truncated_charset_name (before->name);
  1886.         print_truncated_charset_name (after->name);
  1887.         printf ("  %-16s", quality_string);
  1888.         printf ("steps: %d", saved_length_of_sequence);
  1889.  
  1890.         if (length_of_sequence != saved_length_of_sequence)
  1891.           printf (", %d saved by merging",
  1892.               saved_length_of_sequence - length_of_sequence);
  1893.         printf ("\n");
  1894.  
  1895.         /* Unregister and clean up the merged steps.  */
  1896.  
  1897.         while (number_of_single_steps > saved_number_of_single_steps)
  1898.           {
  1899.             number_of_single_steps--;
  1900.             step = single_step_array + number_of_single_steps;
  1901.             if (step->one_to_one)
  1902.               free ((void *) step->one_to_one);
  1903.             if (step->one_to_many)
  1904.               free ((void *) step->one_to_many);
  1905.           }
  1906.           }
  1907.       }
  1908. }
  1909.  
  1910. /* Main program.  */
  1911.  
  1912. /*-----------------------------------------------.
  1913. | Explain how to use the program, then get out.     |
  1914. `-----------------------------------------------*/
  1915.  
  1916. void
  1917. usage (int status)
  1918. {
  1919.   if (status != EXIT_SUCCESS)
  1920.     fprintf (stderr, "Try `%s %s' for more information.\n", program_name,
  1921.          decoding_charset_flag ? "--list" : "--help");
  1922.   else
  1923.     {
  1924.       printf ("\
  1925. Usage: %s [OPTION]... [CHARSET]\n", program_name);
  1926.  
  1927.       printf ("\
  1928.   -C, --copyright        display Copyright and copying conditions\n\
  1929.   -l, --list[=FORMAT]    list one or all known charsets\n\
  1930.       --help             display this help\n\
  1931.       --version          output version information\n\
  1932. \n\
  1933. FORMAT it is one of decimal, octal, hexadecimal or full, it defaults to\n\
  1934. decimal if CHARSET given.  CHARSET defaults to %s if FORMAT given.\n",
  1935.           DEFAULT_CHARSET);
  1936.  
  1937.       printf ("\
  1938. Option -l with no FORMAT nor CHARSET list all charsets, also see the texinfo\n\
  1939. documentation.  My preferred charsets are (each user has preferences):\n\
  1940. \n\
  1941.   ascii-bs   ASCII (7-bit), using backspace to apply diacritics\n\
  1942.   ibmpc      IBM-PC 8-bit characters, with proper newlines\n\
  1943.   latex      LaTeX coding of foreign and diacriticized characters\n\
  1944.   latin1     ISO Latin-1 8-bit extension of ASCII\n\
  1945.   texte      Easy French convention for transmitting email messages\n");
  1946.  
  1947.       printf ("\
  1948. \n\
  1949. Usage: %s [OPTION]... [BEFORE]:[AFTER] [FILE]...\n", program_name);
  1950.  
  1951.       printf ("\
  1952. \n\
  1953.   -a, --auto-check       study all recoding paths, report, then exit\n\
  1954.   -c, --colons           use colons instead of double quotes for diaeresis\n\
  1955.   -d, --diacritics       limit conversion to diacritics or alike for LaTeX\n");
  1956.  
  1957. #if 0
  1958.       printf ("\
  1959.   -f, --force            force recoding even if it is not reversible\n");
  1960. #endif
  1961.  
  1962.       printf ("\
  1963.   -g, --graphics         approximate ibmpc rulers by ASCII graphics\n\
  1964.   -h, --header[=NAME]    write C code with table NAME on stdout, then exit\n\
  1965.   -i, --sequence=files   use intermediate files for sequencing passes\n");
  1966.  
  1967. #ifdef HAVE_POPEN
  1968.       printf ("\
  1969.   -o, --sequence=popen   use popen machinery for sequencing passes\n");
  1970. #else
  1971.       printf ("\
  1972.   -o, --sequence=popen   same as -i (on this system)\n");
  1973. #endif
  1974.  
  1975. #ifdef HAVE_PIPE
  1976.       printf ("\
  1977.   -p, --sequence=pipe    use pipe machinery for sequencing passes\n");
  1978. #else
  1979.       printf ("\
  1980.   -p, --sequence=pipe    same as -o (on this system)\n");
  1981. #endif
  1982.  
  1983.       printf ("\
  1984.   -s, --strict           use strict mappings, even loose characters\n\
  1985.   -t, --touch            touch the recoded files after replacement\n\
  1986.   -v, --verbose          explain sequence of steps and report progress\n\
  1987.   -x, --ignore=CHARSET   ignore CHARSET while choosing a recoding path\n\
  1988. \n\
  1989. If none of -i, -o and -p are given, presume -p if no FILE, else -i.\n\
  1990. Each FILE is recoded over itself, destroying the original.  If no\n\
  1991. FILE is specified, then act as a filter and recode stdin to stdout.\n");
  1992.     }
  1993.   exit (status);
  1994. }
  1995.  
  1996. /*----------------------------------------------------------------------.
  1997. | Main program.  Decode ARGC arguments passed through the ARGV array of |
  1998. | strings, then launch execution.                        |
  1999. `----------------------------------------------------------------------*/
  2000.  
  2001. /* Long options equivalences.  */
  2002. static const struct option long_options[] =
  2003. {
  2004.   {"auto-check", no_argument, NULL, 'a'},
  2005.   {"colons", no_argument, NULL, 'c'},
  2006.   {"copyright", no_argument, NULL, 'C'},
  2007.   {"diacritics", no_argument, NULL, 'd'},
  2008.   {"force", no_argument, NULL, 'f'},
  2009.   {"header", optional_argument, NULL, 'h'},
  2010.   {"help", no_argument, &show_help, 1},
  2011.   {"ignore", required_argument, NULL, 'x'},
  2012.   {"list", optional_argument, NULL, 'l'},
  2013.   {"sequence", required_argument, NULL, '\n'},
  2014.   {"strict", no_argument, NULL, 's'},
  2015.   {"touch", no_argument, NULL, 't'},
  2016.   {"verbose", no_argument, NULL, 'v'},
  2017.   {"version", no_argument, &show_version, 1},
  2018.   {0, 0, 0, 0},
  2019. };
  2020.  
  2021. static const char *const format_strings[] =
  2022.   {
  2023.     "decimal",
  2024.     "octal",
  2025.     "hexadecimal",
  2026.     "full",
  2027.     NULL,
  2028.   };
  2029.  
  2030. static const char *const sequence_strings[] =
  2031.   {
  2032.     "files",
  2033.     "popen",
  2034.     "pipe",
  2035.     NULL,
  2036.   };
  2037.  
  2038. int
  2039. main (int argc, char *const *argv)
  2040. {
  2041.   extern int optind;        /* index of argument */
  2042.   int option_char;        /* option character */
  2043.   const char *input_name;    /* input file name */
  2044.   char output_name[200];    /* output file name */
  2045.   FILE *file;            /* file to check or stat */
  2046. #ifdef MSDOS
  2047.   struct ftime stamp_stat;    /* input file time stamps */
  2048. #else
  2049.   struct stat stamp_stat;    /* input file time stamps */
  2050.   time_t stamp_utime[2];    /* recoded file time stamps */
  2051. #endif
  2052.   char *cursor;            /* all purpose cursor */
  2053.  
  2054.   /* Decode command options.  */
  2055.  
  2056.   program_name = argv[0];
  2057.  
  2058.   while (option_char = getopt_long (argc, argv, "aCcdfgh::il::opstvx:",
  2059.                     long_options, NULL),
  2060.      option_char != EOF)
  2061.     switch (option_char)
  2062.       {
  2063.       default:
  2064.     usage (EXIT_FAILURE);
  2065.  
  2066.       case '\0':
  2067.     break;
  2068.  
  2069.       case '\n':
  2070.     switch (argmatch (optarg, sequence_strings))
  2071.       {
  2072.       case -2:
  2073.         error (0, 0, "Ambiguous sequence `%s'", optarg);
  2074.         usage (EXIT_FAILURE);
  2075.  
  2076.       case -1:
  2077.         error (0, 0, "Unknown sequence `%s'", optarg);
  2078.         usage (EXIT_FAILURE);
  2079.  
  2080.       case 0:
  2081.         sequence_strategy = SEQUENCE_WITH_FILES;
  2082.         break;
  2083.  
  2084.       case 1:
  2085.         sequence_strategy = SEQUENCE_WITH_POPEN;
  2086.         break;
  2087.  
  2088.       case 2:
  2089.         sequence_strategy = SEQUENCE_WITH_PIPE;
  2090.         break;
  2091.       }
  2092.     break;
  2093.  
  2094.       case 'a':
  2095.     auto_check_mode = 1;
  2096.     break;
  2097.  
  2098.       case 'C':
  2099.     fprintf (stderr, "%s", copyright_string);
  2100.     exit (EXIT_SUCCESS);
  2101.  
  2102.       case 'c':
  2103.     diaeresis_char = ':';
  2104.     break;
  2105.  
  2106.       case 'd':
  2107.     diacritics_only = 1;
  2108.     break;
  2109.  
  2110.       case 'f':
  2111.     force_option = 1;
  2112.     break;
  2113.  
  2114.       case 'g':
  2115.     ascii_graphics = 1;
  2116.     break;
  2117.  
  2118.       case 'h':
  2119.     make_header_mode = 1;
  2120.     header_name = optarg;
  2121.     break;
  2122.  
  2123.       case 'i':
  2124.     sequence_strategy = SEQUENCE_WITH_FILES;
  2125.     break;
  2126.  
  2127.       case 'l':
  2128.     show_charsets = 1;
  2129.     if (optarg)
  2130.       switch (argmatch (optarg, format_strings))
  2131.         {
  2132.         case -2:
  2133.           error (0, 0, "Ambiguous format `%s'", optarg);
  2134.           usage (EXIT_FAILURE);
  2135.  
  2136.         case -1:
  2137.           error (0, 0, "Unknown format `%s'", optarg);
  2138.           usage (EXIT_FAILURE);
  2139.  
  2140.         case 0:
  2141.           list_format = DECIMAL_FORMAT;
  2142.           break;
  2143.  
  2144.         case 1:
  2145.           list_format = OCTAL_FORMAT;
  2146.           break;
  2147.  
  2148.         case 2:
  2149.           list_format = HEXADECIMAL_FORMAT;
  2150.           break;
  2151.  
  2152.         case 3:
  2153.           list_format = FULL_FORMAT;
  2154.           break;
  2155.         }
  2156.     break;
  2157.  
  2158.       case 'o':
  2159.     sequence_strategy = SEQUENCE_WITH_POPEN;
  2160.     break;
  2161.  
  2162.       case 'p':
  2163.     sequence_strategy = SEQUENCE_WITH_PIPE;
  2164.     break;
  2165.  
  2166.       case 's':
  2167.     strict_mapping = 1;
  2168.     break;
  2169.  
  2170.       case 't':
  2171.     touch_option = 1;
  2172.     break;
  2173.  
  2174.       case 'v':
  2175.     verbose_option = 1;
  2176.     break;
  2177.  
  2178.       case 'x':
  2179.     ignored_name = optarg;
  2180.     break;
  2181.       }
  2182.  
  2183.   if (strict_mapping)
  2184.     force_option = 1;
  2185.  
  2186.   /* Process trivial options.  */
  2187.  
  2188.   if (show_version)
  2189.     {
  2190.       printf ("%s\n", version_string);
  2191.       exit (EXIT_SUCCESS);
  2192.     }
  2193.  
  2194.   if (show_help)
  2195.     usage (EXIT_SUCCESS);
  2196.  
  2197.   /* Register all modules, then set the ignored charset.  */
  2198.  
  2199.   register_all_modules ();
  2200.   make_argmatch_array ();
  2201.  
  2202.   if (ignored_name)
  2203.     find_charset (clean_charset_name (ignored_name))->ignore = 1;
  2204.  
  2205.   /* Process charset listing options.  */
  2206.  
  2207.   if (show_charsets)
  2208.     {
  2209.  
  2210.       /* Select a possible charset and a default format.  */
  2211.  
  2212.       if (optind + 1 == argc)
  2213.     list_charset = find_charset (clean_charset_name (argv[optind]));
  2214.       else if (list_format != NO_FORMAT)
  2215.     list_charset = find_charset (clean_charset_name (NULL));
  2216.       else
  2217.     list_charset = NULL;
  2218.  
  2219.       /* List the charset(s) appropriately.  */
  2220.       
  2221.       if (list_charset)
  2222.     if (list_format == FULL_FORMAT)
  2223.       list_full_charset (list_charset);
  2224.     else
  2225.       list_concise_charset (list_charset);
  2226.       else
  2227.     list_all_charsets ();
  2228.  
  2229.       /* Then get out.  */
  2230.  
  2231.       exit (EXIT_SUCCESS);
  2232.     }
  2233.  
  2234.   /* Process other options not requiring BEFORE:AFTER.  */
  2235.  
  2236.   if (auto_check_mode)
  2237.     {
  2238.       report_about_all_sequences ();
  2239.       exit (EXIT_SUCCESS);
  2240.     }
  2241.  
  2242.   /* Prepare for decoding the BEFORE:AFTER argument.  Split it.  Then
  2243.      guarantee a NULL at end of charset_name_array.  */
  2244.  
  2245.   if (optind + 1 > argc)
  2246.     usage (EXIT_FAILURE);
  2247.  
  2248.   decode_before_after (argv[optind++]);
  2249.  
  2250.   /* Establish the sequence of recoding steps.  */
  2251.  
  2252.   length_of_sequence = 0;
  2253.   find_sequence (before_charset, after_charset);
  2254.   if (length_of_sequence < 0)
  2255.     error (EXIT_FAILURE, 0, "No way to recode from %s to %s.",
  2256.        before_charset->name, after_charset->name);
  2257.  
  2258.   optimize_sequence ();
  2259.  
  2260.   /* If we merely want C code, do it and get out.  */
  2261.  
  2262.   if (make_header_mode)
  2263.     {
  2264.       if (length_of_sequence == 0)
  2265.     error (EXIT_FAILURE, 0, "No C code for the trivial recoding");
  2266.       if (length_of_sequence > 1
  2267.       || !(sequence[0]->one_to_one || sequence[0]->one_to_many))
  2268.     error (EXIT_FAILURE, 0, "Unable to deduce the recoding table");
  2269.  
  2270.       output_header_file ();
  2271.       exit (EXIT_SUCCESS);
  2272.     }
  2273.  
  2274.   /* If there is no input file, act as a filter.  Else, recode all files
  2275.      over themselves.  */
  2276.  
  2277.   if (optind < argc)
  2278.     {
  2279.  
  2280.       /* When reading and writing files, unless the user selected otherwise,
  2281.      avoid forking and use intermediate files.  */
  2282.  
  2283.       if (sequence_strategy == STRATEGY_UNDECIDED)
  2284.     sequence_strategy = SEQUENCE_WITH_FILES;
  2285.  
  2286.       /* In case files are recoded over themselves and there is no
  2287.          recoding step at all, do not even try to touch the files.  */
  2288.  
  2289.       if (length_of_sequence > 0)
  2290.  
  2291.     /* Process files, one at a time.  */
  2292.  
  2293.     for (; optind < argc; optind++)
  2294.       {
  2295.         input_name = argv[optind];
  2296.  
  2297.         /* Check if the file can be read and rewritten.  */
  2298.  
  2299.         if (file = fopen (input_name, "r+"), file == NULL)
  2300.           error (EXIT_FAILURE, errno, input_name);
  2301.  
  2302.         /* Save the input file time stamp.  */
  2303.  
  2304.         if (!touch_option)
  2305.           {
  2306. #ifdef MSDOS
  2307.         getftime (fileno (file), &stamp_stat);
  2308. #else
  2309.         fstat (fileno (file), &stamp_stat);
  2310. #endif
  2311.           }
  2312.  
  2313.         fclose (file);
  2314.  
  2315.         /* Choose an output file in the same directory.  */
  2316.  
  2317.         strcpy (output_name, input_name);
  2318.         for (cursor = output_name + strlen (output_name);
  2319.          cursor > output_name && cursor[-1] != '/'
  2320. #ifdef MSDOS
  2321.          /* It has been reported this next line is also required
  2322.             for OS/2 EMX.  */
  2323.          && cursor[-1] != '\\' && cursor[-1] != ':'
  2324. #endif
  2325.          && cursor[-1] != '\\' && cursor[-1] != ':'
  2326.          ; cursor--)
  2327.           ;
  2328.         strcpy (cursor, "recodeXX.TMP");
  2329.  
  2330.         /* Recode the file.  */
  2331.  
  2332.         execute_sequence (input_name, output_name);
  2333.  
  2334.         /* Move the new file over the original.  */
  2335.  
  2336.         if (unlink (input_name) < 0)
  2337.           error (EXIT_FAILURE, errno, input_name);
  2338. #ifdef HAVE_RENAME
  2339.         if (rename (output_name, input_name) < 0)
  2340.           error (EXIT_FAILURE, errno, output_name);
  2341. #else
  2342.         if (link (output_name, input_name) < 0)
  2343.           error (EXIT_FAILURE, errno, output_name);
  2344.         if (unlink (output_name) < 0)
  2345.           error (EXIT_FAILURE, errno, output_name);
  2346. #endif
  2347.  
  2348.         /* Adjust the time stamp for the new file.  */
  2349.  
  2350.         if (!touch_option)
  2351.           {
  2352. #ifdef MSDOS
  2353.         file = fopen (input_name, "r");
  2354.         if (file == NULL)
  2355.           error (EXIT_FAILURE, errno, input_name);
  2356.         setftime (fileno (file), &stamp_stat);
  2357.         fclose (file);
  2358. #else
  2359.         stamp_utime[0] = stamp_stat.st_atime;
  2360.         stamp_utime[1] = stamp_stat.st_mtime;
  2361.         utime (input_name, stamp_utime);
  2362. #endif
  2363.           }
  2364.       }
  2365.     }
  2366.   else
  2367.     {
  2368.  
  2369.       /* When reading stdin and writing stdout, unless the user selected
  2370.          otherwise, fork processes interconnected with pipes.  */
  2371.  
  2372.       if (sequence_strategy == STRATEGY_UNDECIDED)
  2373.     sequence_strategy = SEQUENCE_WITH_PIPE;
  2374.  
  2375.       execute_sequence (NULL, NULL);
  2376.     }
  2377.   exit (EXIT_SUCCESS);
  2378. }
  2379.